Method: Vips::Image#<=
- Defined in:
- lib/vips8/image.rb
permalink #<=(other) ⇒ Image
Relational less than or equal to with an image, constant or array.
862 863 864 865 |
# File 'lib/vips8/image.rb', line 862 def <=(other) other.is_a?(Vips::Image) ? relational(other, :lesseq) : relational_const(other, :lesseq) end |